home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / mem.man,v < prev    next >
Text File  |  1989-02-09  |  3KB  |  112 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 1.2
  10. date     89.02.09.10.27.17;  author ouster;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     89.01.09.10.22.16;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @Changed OPTIONS => ARGUMENTS.
  27. @
  28. text
  29. @' Copyright 1989 Regents of the University of California
  30. ' Permission to use, copy, modify, and distribute this
  31. ' documentation for any purpose and without fee is hereby
  32. ' granted, provided that this notice appears in all copies.
  33. ' The University of California makes no representations about
  34. ' the suitability of this material for any purpose.  It is
  35. ' provided "as is" without express or implied warranty.
  36. ' $Header: /sprite/src/lib/c/string/RCS/mem.man,v 1.1 89/01/09 10:22:16 ouster Exp Locker: ouster $ SPRITE (Berkeley)
  37. .so \*(]ltmac.sprite
  38. .HS mem lib
  39. .BS
  40. .SH NAME
  41. memchr, memcmp, memcpy, memset \- Operations on byte arrays
  42. .SH SYNOPSIS
  43. .nf
  44. \fB#include <string.h>
  45.  
  46. \fBchar *
  47. \fBmemchr(\fIs\fB, \fIc\fB, \fIn\fB)
  48.  
  49. \fBint
  50. \fBmemcmp(\fIs\fB, \fIs2\fB, \fIn\fB)
  51.  
  52. \fBchar *
  53. \fBmemcpy(\fIdest\fB, \fIsource\fB, \fIn\fB)
  54.  
  55. \fBchar *
  56. \fBmemset(\fIdest\fB, \fIc\fB, \fIn\fB)
  57. .SH ARGUMENTS
  58. .AS char source
  59. .AP char *s in
  60. Pointer to array of characters.
  61. .AP char *source in
  62. Pointer to array of characters to copy.
  63. .AP char *dest out
  64. Pointer to array of characters to modify.
  65. .AP int c in
  66. Value to search for (\fBmemchr\fR), or value to set to (\fBmemset\fR).
  67. .AP int n in
  68. Count of number of characters to test, copy, or set.
  69. .BE
  70.  
  71. .SH DESCRIPTION
  72. These procedures manipulate memory as counted arrays of bytes.
  73. .PP
  74. The \fBmemchr\fR procedure searches for the first occurrence of \fIc\fR
  75. in the \fIn\fR bytes starting at \fIs\fR, and returns the address of the
  76. first such occurrence.  If the value \fIc\fR is not found, then \fBNULL\fR
  77. is returned.
  78. .PP
  79. \fBMemcmp\fR compares two arrays of bytes, \fIs\fR and \fIs2\fR, in
  80. order, until a difference is found or \fIn\fR bytes have been compared.
  81. It returns a value greater than zero if, in the first differing byte,
  82. the value \fIs\fR is greater than the value in \fIs2\fR.  If the value
  83. in \fIs\fR is less than the value in \fIs2\fR, then a value less than
  84. zero is returned.  If the two arrays are identical in their first \fIn\fR
  85. bytes, then zero is returned.  Signed character comparison is used.
  86. .PP
  87. \fBMemcpy\fR copies \fIn\fR bytes from \fIsource\fR to \fIdest\fR and
  88. returns \fIdest\fR as its result.
  89. .PP
  90. \fBMemset\fR stores the value \fIc\fR in each of the \fIn\fR bytes starting
  91. at \fIdest\fR, and returns \fIdest\fR as its result.
  92.  
  93. .SH KEYWORDS
  94. characters, copy, memory, set, test
  95. @
  96.  
  97.  
  98. 1.1
  99. log
  100. @Initial revision
  101. @
  102. text
  103. @d9 1
  104. a9 1
  105. ' $Header: /sprite/lib/forms/RCS/proto.man,v 1.2 89/01/05 17:31:38 ouster Exp $ SPRITE (Berkeley)
  106. d31 1
  107. a31 1
  108. .SH OPTIONS
  109. @
  110.